home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DBASE_UT / VMODE / MODE43.PAS < prev    next >
Pascal/Delphi Source File  |  1995-01-22  |  593b  |  26 lines

  1. Program Mode43;
  2.  
  3. {    Version 1.1.0.P
  4.  
  5.     Requires Borland Turbo Pascal version 6.0 or later to compile.
  6.  
  7.     Author:  Bruce J. Lackore.  Created Sunday, November 20, 1994.
  8.     Copyright (c) 1994 Bruce J. Lackore.  ALL RIGHTS RESERVED.
  9. }
  10. {$IFDEF Test}
  11.     {$A+,B-,D+,E+,F-,G-,I+,L+,N-,R+,S+,V-,X+}
  12. {$ELSE}
  13.     {$A+,B-,D-,E+,F-,G-,I-,L-,N-,R-,S-,V-,X+}
  14. {$ENDIF}
  15.  
  16. {$M 16384, 8192, 655360}
  17.  
  18. {    This program does nothing but set the video mode for a VGA-based system to
  19.     the somewhat easier to read 43-line mode.
  20. }
  21.  
  22. Uses VMode;
  23.  
  24. Begin  { Program:  Mode43 }
  25.     VGA43
  26. End.  { Program:  Mode43 }